The <h1> to <h6> tags are used to define HTML headings. <h1> defines the most important heading. <h6> defines the least important heading.


Syntax:
<h1> ....content... </h1>


<html> 
<head> <title>Creative Mission- IT training & Research center </title> </head> 
<body bgcolor="#7FFFD4">
 <h1> Welcome to Creative Mission.</h1> 
<h2> Welcome to Creative Mission.</h2> 
<h3> Welcome to Creative Mission.</h3>
 <h4> Welcome to Creative Mission.</h4> 
<h5> Welcome to Creative Mission.</h5>
 <h6> Welcome to Creative Mission.</h6> 
</body>
</html>
Output:html


All Tutorial => 123456789101112131415





Write Comment